home *** CD-ROM | disk | FTP | other *** search
/ Developer Helper 1: Phil & Dave's Excellent CD / Excellent CD HFS.raw / Utilities / ResEdit / Examples / PExamples / Source / LDEF.a < prev    next >
Text File  |  2022-08-05  |  436b  |  24 lines

  1. ; COPYRIGHT (C) 1984-1989 Apple Computer,Inc.
  2. ; All rights reserved
  3. ;LDEF.a
  4.  
  5.  
  6.               BLANKS        ON
  7.               STRING        ASIS
  8.  
  9. StdLDEF    MAIN EXPORT 
  10.  
  11.     IMPORT DrawCell
  12.  
  13.          
  14.                BRA.S     @0             ; enter here
  15.  
  16.                DC.W      0       ; flags word
  17.                DC.B       'LDEF'             ; type
  18.                DC.W      0       ; ID
  19.                DC.W      0       ; version
  20. @0
  21.                JMP     DrawCell
  22.  
  23.         END 
  24.